home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 4_misc / set / debug < prev    next >
Text File  |  2001-03-21  |  1KB  |  33 lines

  1. Synopsis:
  2.    set debug [<level>]
  3.  
  4. Description:
  5.    When turned on, this variable enables various degrees of debugging
  6.    while the client is running.  It is useful for seeing precisely where
  7.    a particular alias or function is failing, what variables are being
  8.    assigned what values, etc.  There are three general classes of debug
  9.    output, each assigned a unique number.
  10.  
  11.       Bit  Value   Purpose
  12.        0     1     displays all commands executed, including aliases
  13.        1     2     displays all actual alias and variable substitutions
  14.        2     4     displays all function calls and their return values
  15.  
  16.    Multiple classes may be displayed at once by adding the desired
  17.    values together.  A setting of 0 (zero) turns off debugging.
  18.  
  19. Examples:
  20.    To show all commands executed and alias expansion:
  21.       /set debug 3
  22.  
  23.    To show everything:
  24.       /set debug 7
  25.  
  26. See Also:
  27.    set(4) hold_mode
  28.  
  29. Other Notes:
  30.    This command can generate a lot of output, so setting HOLD_MODE on is
  31.    recommended.
  32.  
  33.